const github.com/klauspost/compress/flate.allocHistory
8 uses
github.com/klauspost/compress/flate (current package)
fast_encoder.go#L47: allocHistory = maxStoreBlockSize * 5 // Size to preallocate for history.
fast_encoder.go#L48: bufferReset = (1 << 31) - allocHistory - maxStoreBlockSize - 1 // Reset the buffer offset when reaching this.
fast_encoder.go#L84: e.hist = make([]byte, 0, allocHistory)
fast_encoder.go#L184: if cap(e.hist) < allocHistory {
fast_encoder.go#L185: e.hist = make([]byte, 0, allocHistory)
level5.go#L627: if cap(e.hist) < allocHistory {
level5.go#L628: e.hist = make([]byte, 0, allocHistory)
level5.go#L645: e.hist = make([]byte, 0, allocHistory)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |